home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 28
/
Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso
/
Aminet
/
dev
/
amos
/
AMOSList-0998.lzh
/
AMOSLIST
/
000015_bounce-amos-li…net@onelist.com_Tue Sep 1 18:55:42 1998.msg
< prev
next >
Wrap
Text File
|
1998-10-01
|
14KB
|
406 lines
>From bounce-amos-list--874-mcox=access.digex.net@onelist.com Tue Sep 1 18:55:42 1998
Received: from onelist.com (pop.onelist.com [209.207.135.253])
by pony-1.mail.digex.net (8.8.8/8.8.8) with SMTP id SAA15157
for <mcox@access.digex.net>; Tue, 1 Sep 1998 18:55:41 -0400 (EDT)
Received: (qmail 9884 invoked by alias); 1 Sep 1998 22:49:43 -0000
Received: (qmail 9678 invoked from network); 1 Sep 1998 22:49:38 -0000
Received: from unknown (HELO tungsten.btinternet.com) (194.73.73.81) by pop.onelist.com with SMTP; 1 Sep 1998 22:49:38 -0000
Received: from np5gt [195.171.236.153] by tungsten.btinternet.com with smtp (Exim 1.70 #1) id 0zDzFA-0005qI-00; Tue, 1 Sep 1998 23:49:45 +0100
Message-ID: <005101bdd5fb$0a0be060$99ecabc3@np5gt>
From: "John Glanville" <John.Glanville@btinternet.com>
To: <amos-list@onelist.com>
Date: Tue, 1 Sep 1998 23:51:20 +0100
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.3110.1
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3
Mailing-List: list amos-list@onelist.com; contact http://www.onelist.com
Delivered-To: mailing list amos-list@onelist.com
Precedence: bulk
Reply-to: amos-list@onelist.com
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="----=_NextPart_000_004E_01BDD603.6ADC2460"
Subject: [amos-list] This Is annoying.. I keep recieving my own Mail!!!!
Status: O
X-Status:
From: "John Glanville" <John.Glanville@btinternet.com>
This is a multi-part message in MIME format.
------=_NextPart_000_004E_01BDD603.6ADC2460
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hey! Here is more of my Code... This Contains GRAVITY... WIND and ALSORT =
OF OTHER STUFF NEEDED 4 GAMES! Read on! BYE!
Hide On=20
Cls 0
Screen Open 0,320,256,64,Lowres
Colour 1,$0
Flash Off=20
Curs Off=20
Degree=20
Cls 0
Colour 8,$777
Colour 5,$F0
Ink 5
Box 0,0 To 319,201
' X =20
' /W\ =20
' /---\ =20
' / M|G \ =20
'/-------\ =20
' X,Y Coordinates
X#=3D100
Y#=3D100
' Weight Value=20
WI#=3D0
' Acceleration Value =20
AC#=3D0
' Don't Remove: When ACL#=3D0 , ACL# Should Really =3D 1=20
' Because to get no change from Multiplication=20
' You should multiply by 1 not 0=20
' This is the same with weight...
WI#=3DWI#+1
AC#=3DAC#+1
' Maximum Force of Gravity=20
GM#=3D3.0
' Maximum Speed on Y axis
YM#=3D7.0-(WI#/2)
' Maximum Speed on X axis
XM#=3D7.0
' Gravity Increase=20
GI#=3D0.1
' Y Thrust Increase =20
YI#=3D0.1
' X Thrust Increase
XI#=3D0.1
' Air Resistance =20
AR#=3D0.05
' Wind Value and Direction + or -
WD#=3D0.0
' Maximum Rate of Wind Change : in seconds=20
RW=3D5
' Speed of Wind Change=20
SW#=3D0.1
' Maximum Speed of Wind
MS=3D2
' Fuel Amount =20
FA#=3D100
' Wall Repulsion Factor
BW#=3D0.5
OX=3DX#
OY=3DY#
Do=20
Ink 0
Plot X#,Y#
Plot OX,OY
=20
If T=3D0
T=3DRnd(RW*60)
WN#=3DRnd((2*MS))-MS
Else=20
Dec T
End If=20
=20
If WD#<>WN#
If Abs(WN#-WD#)>0.09
WD#=3DWD#+(Sgn(WN#-WD#)*SW#)
Else=20
WD#=3DWN#
End If=20
WD=3D(WD#*10)
Ink 0
Bar 280-20,220 To 280+20,230
Ink 2
If WD>0
Bar 280-WD,220 To 280,230
End If=20
If WD<0
Bar 280,220 To 280-WD,230
End If=20
End If=20
=20
OX=3DX#
OY=3DY#
=20
If Key State(78)=3D-1
If SX#<XM#
SX#=3DSX#+(XI#*AC#)
End If=20
Else=20
If SX#>0
SX#=3DSX#-AR#
End If=20
End If=20
If Key State(79)=3D-1
If SX#>-XM#
SX#=3DSX#-(XI#*AC#)
End If=20
Else=20
If SX#<0
SX#=3DSX#+AR#
End If=20
End If=20
=20
If Key State(76)=3D-1 and KEY<>4
If SY#<YM#
SY#=3DSY#+(YI#/WI#)*(AC#/2)
End If=20
If SY#>YM#
SY#=3DYM#
End If=20
FA#=3DFA#-Abs(SY#/100)
Else=20
If SY#>0
SY#=3DSY#-GI#
End If=20
End If=20
=20
If Key State(77)=3D-1 and KEY<>4
If SY#>-YM#
SY#=3DSY#-(YI#/WI#)*(AC#/2)
End If=20
If SY#<-YM#
SY#=3D-YM#
End If=20
FA#=3DFA#-Abs(SY#/100)
Else=20
If SY#<0
SY#=3DSY#+GI#
End If=20
End If=20
=20
If FA#<0
KEY=3D4
End If=20
=20
If GR#<GM#+(WI#)
GR#=3DGR#+(GI#*WI#)
If GR#>GM#+(WI#)
GR#=3DGM#+(WI#)
End If=20
End If=20
=20
Y#=3DY#-SY#+GR#
X#=3DX#+SX#-WD#
=20
If X#<1 or X#>318
SX#=3D-(SX#*BW#)
If X#<1
X#=3D2
Else=20
X#=3D317
End If=20
End If=20
=20
If Y#>200
Y#=3D200
SY#=3DGM#+(WI#)
End If=20
If Y#<1
Y#=3D1
SY#=3DGM#+(WI#)
End If=20
=20
Ink 8
Plot OX,OY
Ink 2
Plot X#,Y#
FA=3DFA#
Text 3,9,Str$(FA)-" "
=20
Wait Vbl=20
Loop=20
It should work... Damn Can't think of any thing funny 2 say....
Jut herup tiddle whoops....
there U go thats all from Me!
BYE!!!!!!
------=_NextPart_000_004E_01BDD603.6ADC2460
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
<HTML>
<HEAD>
<META content=3Dtext/html;charset=3Diso-8859-1 =
http-equiv=3DContent-Type>
<META content=3D'"MSHTML 4.72.3110.7"' name=3DGENERATOR>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT color=3D#000000 size=3D2>Hey! Here is more of my Code... This =
Contains=20
GRAVITY... WIND and ALSORT OF OTHER STUFF NEEDED 4 GAMES! Read on!=20
BYE!</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2>Hide On <BR>Cls 0<BR>Screen Open=20
0,320,256,64,Lowres<BR>Colour 1,$0<BR>Flash Off <BR>Curs Off <BR>Degree =
<BR>Cls=20
0<BR>Colour 8,$777<BR>Colour 5,$F0<BR>Ink 5<BR>Box 0,0 To =
319,201</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>' =
X =20
<BR>' /W\ <BR>' /---\ =
<BR>' /=20
M|G \ <BR>'/-------\ </FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>' X,Y=20
Coordinates<BR>X#=3D100<BR>Y#=3D100<BR>' Weight Value=20
<BR>WI#=3D0</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>' Acceleration =
Value =20
<BR>AC#=3D0<BR>' Don't Remove: When ACL#=3D0 , ACL# Should =
Really =3D 1=20
<BR>' &n=
bsp; =20
Because to get no change from Multiplication=20
<BR>' &n=
bsp; =20
You should multiply by 1 not 0=20
<BR>' &n=
bsp; =20
This is the same with =
weight...<BR>WI#=3DWI#+1<BR>AC#=3DAC#+1<BR>' =20
Maximum Force of Gravity <BR>GM#=3D3.0<BR>' Maximum Speed on =
Y=20
axis<BR>YM#=3D7.0-(WI#/2)<BR>' Maximum Speed on X=20
axis<BR>XM#=3D7.0<BR>' Gravity Increase =
<BR>GI#=3D0.1<BR>' Y=20
Thrust Increase <BR>YI#=3D0.1<BR>' X Thrust=20
Increase<BR>XI#=3D0.1<BR>' Air Resistance =20
<BR>AR#=3D0.05<BR>' Wind Value and Direction + or=20
-<BR>WD#=3D0.0<BR>' Maximum Rate of Wind Change : in seconds =
<BR>RW=3D5<BR>' Speed of Wind Change =
<BR>SW#=3D0.1<BR>' =20
Maximum Speed of Wind<BR>MS=3D2<BR>' Fuel Amount =20
<BR>FA#=3D100<BR>' Wall Repulsion =
Factor<BR>BW#=3D0.5</FONT></DIV>
<DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
<DIV><FONT color=3D#000000 size=3D2>OX=3DX#<BR>OY=3DY#<BR>Do =
<BR> Ink=20
0<BR> Plot X#,Y#<BR> &